#formulario-container {
    display: flex;
    justify-content: space-between; /* Para separar texto e formulário */
    align-items:center;
    text-align: start;
    background-image: url('/assets/Foto_cadastro.png');
    background-size: 100% 100%;
    max-width: 1000px auto;
    margin: 10px auto;
    background-color: #ccc;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .texto, .formulario {
    flex: 1;
    max-width: 50%;
    margin-left: 40px;
  }

  .text-section h2, strong {
    font-weight: bold;
  } 

  .text-section h2 {
    margin-bottom: 20px;
  }
  
  .formulario {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  
  .formulario input[type="text"],
  .formulario input[type="email"],
  .formulario input[type="tel"] {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #8bd847;
    color: black;
    font-weight: bold;
  }
  
  .formulario input::placeholder {
    color: black;
  }
  
  .aviso {
    font-size: 12px;
    color: #000;
    margin-top: 10px;
  }
  
  .checkbox {
    font-size: 12px;
    color: black;
  }
  
  .checkbox input {
    margin-right: 5px;
  }
  
  button {
    margin-top: 10px;
    padding: 12px;
    border: none;
    background-color: #8fff4f;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
  }
  
  button:hover {
    background-color: #75e63b;
  }